summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/layout.tsx
blob: c5e75a4c4d0f0d1218935a85d2670b3b90892e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { ReactNode } from 'react';
import { Header } from '@/components/layout/Header';
import { SiteFooter } from '@/components/layout/Footer';
import { getServerSession } from "next-auth";
import { authOptions } from "@/app/api/auth/[...nextauth]/route";
import { verifyNonsapPermission } from "@/lib/nonsap/auth-service";
import { PermissionChecker } from "@/components/common/permission-checker";

export default async function EvcpLayout({ children }: { children: ReactNode }) {
    const session = await getServerSession(authOptions);
    
    let isAuthorized = true;
    let authMessage = "";

    // Skip permission check if environment variable is set
    const skipPermissionCheck = process.env.SKIP_ORACLE_PERMISSION_CHECK === 'true';

    // Only check permission if user is logged in and check is not skipped
    if (session?.user?.id && !skipPermissionCheck) {
        try {
            const result = await verifyNonsapPermission(
                parseInt(session.user.id), 
                ['SEARCH']
            );
            isAuthorized = result.authorized;
            authMessage = result.message || "";
        } catch (error) {
            console.error("Permission check failed:", error);
            // Default to true in case of error to avoid blocking access due to system error
            // but logic could be changed to false for strict security
            isAuthorized = true;
            authMessage = "Permission check error"; 
        }
    }

    return (
        <div className="relative flex min-h-svh flex-col bg-background">
        {/* <div className="relative flex min-h-svh flex-col bg-slate-100 "> */}
            <Header />
            {!skipPermissionCheck && (
                <PermissionChecker authorized={isAuthorized} message={authMessage} />
            )}
            <main className="flex flex-1 flex-col">
                <div className='container-wrapper'>
                        {children}
                </div>
            </main>
            <SiteFooter/>
        </div>
    );
}